From b3fb1aefd8b285874b0a744af024a16d3958e402 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 26 Jul 2015 01:34:38 -0400 Subject: [PATCH] win32: Support all css cursor names Approximate some of the resize cursors with similar cursors. --- gdk/win32/gdkcursor-win32.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/gdk/win32/gdkcursor-win32.c b/gdk/win32/gdkcursor-win32.c index 290389b210..288f87c5ef 100644 --- a/gdk/win32/gdkcursor-win32.c +++ b/gdk/win32/gdkcursor-win32.c @@ -61,9 +61,19 @@ static DefaultCursor default_cursors[] = { { "move", IDC_SIZEALL }, { "not-allowed", IDC_NO }, { "ew-resize", IDC_SIZEWE }, + { "e-resize", IDC_SIZEWE }, + { "w-resize", IDC_SIZEWE }, + { "col-resize", IDC_SIZEWE }, { "ns-resize", IDC_SIZENS }, + { "n-resize", IDC_SIZENS }, + { "s-resize", IDC_SIZENS }, + { "row-resize", IDC_SIZENS }, { "nesw-resize", IDC_SIZENESW }, + { "ne-resize", IDC_SIZENESW }, + { "sw-resize", IDC_SIZENESW }, { "nwse-resize", IDC_SIZENWSE } + { "nw-resize", IDC_SIZENWSE } + { "se-resize", IDC_SIZENWSE } }; static HCURSOR -- 2.30.2